return the number of rows in a table
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
type(Table), | intent(in) | :: | tab |
FUNCTION TableGetNumberRows & ! ( tab ) & ! RESULT (rows) IMPLICIT NONE !arguments with intent (in): TYPE (table), INTENT (IN) :: tab !local dclarations: INTEGER :: rows !--------------------------------end of declarations--------------------------- rows = tab % noRows END FUNCTION TableGetNumberRows